home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Best of www.BestZips.com (Collector's Edition)
/
Best of WWW.BESTZIPS.COM Collector's Edition (JCSM Shareware) (JCS Marketing).ISO
/
sports__
/
bwldos16.zip
/
INSTALL.BAT
< prev
next >
Wrap
DOS Batch File
|
1993-08-31
|
999b
|
52 lines
echo off
cls
if not exist bowl101.exe goto :errordrive
echo The Bowl101! Install Procedure copies all program
echo files onto your hard drive in a directory called
echo BOWL.
echo INSTALL followed by the drive specification.
echo Example.....
echo.
echo A: Log to the drive containing BOWL101
echo.
echo.
echo INSTALL C:
echo.
echo.
echo Installs Bowl101! onto drive C:\BOWL
echo.
echo.
echo Press Ctrl-Break if you wish to exit and start again or...
if "%1"=="" goto error
pause
set d=c:
set d=%1%
:Copyall
if exist %1%\bowl\bowl.mnu goto there
if not exist %d%\bowl MD %d%\bowl
:there
echo -1>%d%test101.101
if not exist %d%test101.101 goto :error
del %d%test101.101
copy *.* %d%\bowl
cls
CD %d%\bowl
%1
echo * Installation Complete *
goto end
:errordrive
echo
echo.
echo.
echo Please Log to drive containing Bowl101 and try again.
echo.
echo.
goto end
:error
echo
echo.
echo.
echo Please specify drive to install Bowl101 on.
:end